home *** CD-ROM | disk | FTP | other *** search
/ Die Speccy' 97 / Die Speccy' 97.iso / amiga_system / the_aminet / util / shell / csh548src.lha / Custom_Headers / mindebug.h next >
Text File  |  1993-05-13  |  308b  |  14 lines

  1.  
  2. /**********    debug macros     ***********/
  3. #define MYDEBUG  1
  4. void kprintf(UBYTE *fmt,...);
  5. void dprintf(UBYTE *fmt,...);
  6. #define DEBTIME 0
  7. #define bug printf
  8. #if MYDEBUG
  9. #define D(x) (x); if(DEBTIME>0) Delay(DEBTIME);
  10. #else
  11. #define D(x) ;
  12. #endif /* MYDEBUG */
  13. /********** end of debug macros **********/
  14.